@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@200;300;400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap");

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body,
html {
  height: auto;
  font-size: 62.5%;
  line-height: 1.15;
  font-family: "Josefin Sans", "Roboto", sans-serif;
  background: white;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
}

:where(:not(html, iframe, canvas, img, svg, video, audio):not(svg *, symbol *)) {
  all: unset;
  display: revert;
}

a,
button {
  cursor: pointer;
}

menu,
ul {
  list-style: none;
}

html.has-scroll-smooth {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

/* ==============================  HEADER NAVBAR START  ==============================  */
.Header {
  width: 100%;
  position: fixed;
  z-index: 99;
  top: 10px;
}

.ProgressBar {
  background-color: #ebebeb;
  height: 10px;
  width: 100vw;
  position: absolute;
  top: -10px;
  left: 0;
  z-index: 99;
  opacity: 0;
  transition: 0.3s;
}

.ProgressBar .Progress_Visible {
  opacity: 1;
  translate: 0 0;
}

.ProgressBar_Bag {
  z-index: 99;
  width: 100%;
  height: 10px;
  position: absolute;
  left: 0;
  opacity: 2;
}

.Progress {
  height: 100%;
  background-color: #d9db4d;
  transition: 0.1s;
  border-radius: 0 5px 5px 0;
}

.container {
  width: 100%;
  margin: auto;
  max-width: 1800px;
  padding: 0 0;
}

.Header_List {
  display: flex;
  align-items: center;
}

.Header_List:before {
  content: "";
  display: block;
  width: 500vw;
  height: 10px;
  position: absolute;
  top: -10px;
  left: -100vw;
  background-color: #f9f8f6;
}

.Header_List .Header_MenuOpen .Header_MenuButton {
  background-color: #f9f8f6;
  border-color: #000;
  color: black;
}

.Profile {
  max-width: 100%;
  height: auto;
  padding: 0 0 0 40px;
  background: #f9f8f6;
  max-height: 80px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.Header_Logo {
  display: flex;
  flex-direction: column;
  z-index: 1;
}

.Header_Logo>svg {
  display: block;
  width: 30px;
  height: auto;
  position: absolute;
  top: 100%;
  left: 0;
  transform: scale(1.01);
}

.Header_Logo:before {
  content: attr(data-title);
  font-size: 12px;
  position: absolute;
  top: 5px;
  left: 15px;
  z-index: 1;
}

.Header_Logo a {
  display: block;
  background: #f9f8f6;
  border-radius: 0 0 30px;
}

.Header_Logo a svg {
  display: block;
  width: auto;
  height: 80px;
  padding: 25px 30px 12px 15px;
  translate: 0 -4px;
}

/* Menu Button */
.Header_MenuButton {
  display: none;
  cursor: pointer;
  border-radius: 20px;
  padding: 7px 10px;
  margin: 0 10px 0 auto;
  border: 2px solid #d9db4d;
  background-color: #d9db4d;
  font-size: 18px;
  font-weight: 500;
  translate: 0 3px;
  transition: .3s;
}

/* Mobile Mode Menu */
.Menu_Menu {
  background-color: transparent;
  padding: 0 50px;
  border-radius: 0 0 40px 0;
  height: 80px;
  display: flex;
  align-items: center;
  transition: .3s;
}

.Men_Men {
  display: none;
}

.Menu_Menu>ul {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 0 25px;
  border-radius: 30px;
  background-color: hsla(0, 0%, 100%, .7);
  box-shadow: 0 0 15px rgba(0, 0, 0, .1);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  margin: 0 0 0 10px;
}

.Menu_Menu>ul>li {
  height: 100%;
  font-size: 16px;
}

.Menu_Menu>ul>li[class*=social]:not(:last-of-type) {
  padding-left: 20px;
}

.Menu_Menu>ul>li[class*=social] a {
  display: block;
  padding: 18px 5px;
  transition: .3s;
}

.Menu_Menu>ul>li[class*=social] a:hover {
  opacity: .7;
}

.Menu_Menu>ul>li[class*=social] svg {
  display: block;
  width: 22px;
  height: 22px;
}

.Menu_Menu>ul>li[class*=social] svg path {
  fill: #000
}

.Menu_Menu>ul>li:hover .Menu_Submenu {
  opacity: 1;
  visibility: visible
}

.Menu_Top {
  display: flex;
  align-items: center;
  gap: 5px;
  height: 100%;
}

.Menu_Top a,
.Menu_Top>span {
  display: block;
  padding: 20px 15px;
  text-decoration: none;
}

.Menu_Top a:hover,
.Menu_Top>span:hover {
  color: #5aa092;
}

/* Dark Mode Button */
.btn-container {
  width: 8rem;
  padding: 10px;
  display: flex;
  border-radius: 30px;
  background-image: url(../../themes/dannaway/images/Sun.jpg);
  background-size: cover;
  align-items: center;
  box-shadow: 0 0 4px 2px rgba(201, 141, 38, 0.8);
  transition: background-image 0.5s ease-in-out, box-shadow 0.3s ease-in-out;
  position: relative;
  overflow: hidden;
}

.btn {
  cursor: pointer;
  padding: 1.3rem;
  border-radius: 50%;
  border: none;
  background: radial-gradient(circle, #f2f2f2, #c4c4c4);
  opacity: 0.30;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
}

.dark-theme {
  background-image: url(../../themes/dannaway/images/Night.jpg);
  image-rendering: pixelated;
  background-size: cover;
  box-shadow: 0 0 2px 3px #b3d4f2;
}

.clicked {
  background: radial-gradient(circle, #f2f2f2, #c4c4c4);
  transform: translateX(100%);
  margin-left: 30px;
}

/* ==============================  HEADER NAVBAR END  ==============================  */



/* ==============================  HOME PAGE START  ==============================  */
/* Home */
article,
aside,
figure,
footer,
hgroup,
section {
  display: block;
}

.clearfix,
section,
.row {
  zoom: 1;
}

.clearfix:before,
section:before,
.row:before,
.clearfix:after,
section:after,
.row:after {
  display: table;
  content: "";
}

.clearfix:after,
section:after,
.row:after {
  clear: both;
}

/* Animate all */
.animate,
.top,
.thumbs li {
  -webkit-transition: all .3s;
  -moz-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
}

/* Animate color */
.animate-color,
footer a {
  -webkit-transition: color .3s;
  -moz-transition: color .3s;
  -o-transition: color .3s;
  transition: color .3s;
}

/* Animate opacity */
.animate-opacity,
.social a,
.logo,
.contact a,
[tooltip]:after,
[tooltip]:before {
  -webkit-transition: opacity .3s;
  -moz-transition: opacity .3s;
  -o-transition: opacity .3s;
  transition: opacity .3s;
}

/* Rounded corners top only */
.rounded-top,
.bar-chart li {
  -moz-border-radius-topleft: 8px;
  -moz-border-radius-topright: 8px;
  -webkit-border-top-left-radius: 8px;
  -webkit-border-top-right-radius: 8px;
}

/* Text Shadow */
.text-shadow-black,
.bar-chart .percent,
.bar-chart .skill {
  text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.5);
}

.text-shadow-white,
.bar-chart .label,
.concept,
.header-center h3 {
  text-shadow: 0px 1px 1px #ffffff;
}

.shadow {
  -webkit-appearance: none;
  -webkit-box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.1);
}

/* Helpers */
.align-c {
  text-align: center !important;
}

.align-c-desktop {
  text-align: left !important;
}

.align-l {
  text-align: left !important;
}

.align-r {
  text-align: right !important;
}

.nopad-t {
  padding-top: 0 !important;
}

.nopad-b {
  padding-bottom: 0 !important;
}

.nopad {
  padding: 0 !important;
}

.margin-b {
  margin-bottom: 7.68rem !important;
}

.margin-bs {
  margin-bottom: 2.4rem !important;
}

.nomargin {
  margin: 0 !important;
}

.noborder {
  border: none !important;
}

.left {
  float: left !important;
}

.right {
  float: right !important;
}

span.text-wide {
  display: none;
}

.pad {
  text-align: left;
  padding: 2.4rem 0px;
  padding-bottom: 0px;
}

.pad.side {
  padding: 0px;
}

.content {
  margin-top: 62px;
}

.row {
  max-width: 68rem;
  margin: 0 auto;
}

.home .row:not(.copy-width),
#footer .row:not(.copy-width),
#bar-chart .row:not(.copy-width),
.portfolio-main #content-detail .row:not(.copy-width),
.portfolio #content-detail .row:not(.copy-width) {
  max-width: 1040px;
}


/* Footer */
footer {
  background: #f5f5f5;
  height: 50px;
  padding: 40px 5% 0 5%;
  color: #757575;
  font-size: 16px;
  font-size: 1.6rem;
  text-align: center;
  position: relative;
  -webkit-box-shadow: inset 0px 1px 4px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: inset 0px 1px 4px 0px rgba(0, 0, 0, 0.1);
  box-shadow: inset 0px 1px 4px 0px rgba(0, 0, 0, 0.1);
}

footer nav {
  display: none;
}

.left {
  float: none !important;
  font-size: 18px;
}

footer .gradient-white {
  position: absolute;
  width: 100%;
  height: 50px;
  top: -50px;
  left: 0px;
  background-color: rgba(255, 255, 255, 0);
  background-image: -moz-linear-gradient(center bottom, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
  background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #ffffff), color-stop(1, rgba(255, 255, 255, 0)));
  background-image: -webkit-linear-gradient(bottom, #ffffff, rgba(255, 255, 255, 0));
  background-image: -o-linear-gradient(bottom, #ffffff, rgba(255, 255, 255, 0));
  background-image: -ms-linear-gradient(bottom, #ffffff, rgba(255, 255, 255, 0));
  background-image: linear-gradient(rgba(255, 255, 255, 0), #ffffff);
}

footer a.top {
  background: transparent url(../../themes/dannaway/images/sprite.png) 0 -217px;
  width: 118px;
  height: 90px;
  display: block;
  position: absolute;
  left: 50%;
  margin-left: -59px;
  bottom: -40px;
  text-indent: -9999px;
}

footer a:hover.top {
  bottom: -35px;
}

footer a {
  color: #757575;
  text-decoration: none;
}

footer a:hover {
  color: #333333;
}

/* Header Tag */

h1,
.h1,
h2,
.h2 {
  margin: 0;
  color: #333333;
  text-rendering: optimizelegibility;
  font-weight: normal;
  font-family: "proxima nova bold", "Helvetica Neue", Helvetica, Arial, Sans-serif;
}

h1,
.h1 {
  margin-bottom: 0.8rem;
  font-size: 80px;
  font-size: 8rem;
  line-height: 1.1;
  letter-spacing: -0.06em;
}

h2,
.h2 {
  margin-bottom: 1.6rem;
  font-size: 36px;
  font-size: 3.6rem;
  line-height: 1.2;
}

h3,
.h3 {
  margin-bottom: 1.6rem;
  font-size: 26px;
  font-size: 2.6rem;
  line-height: 1.3;
  font-weight: normal;
  font-family: "proxima nova semibold", "Helvetica Neue", Helvetica, Arial, Sans-serif;
}

h3.small,
.h3.small {
  font-size: 22px;
  font-size: 2.2rem;
}

h4,
.h4 {
  margin-bottom: 1.6rem;
  font-size: 22px;
  font-size: 2.2rem;
  line-height: 1.3;
  font-weight: normal;
}

p {
  margin-bottom: 2.4rem;
  line-height: 1.5;
  font-size: 20px;
  font-size: 2rem;
}

p.intro {
  font-size: 24px;
  font-size: 2.4rem;
  color: #757575;
  line-height: 1.3;
}

p.intro-small {
  font-size: 22px;
  font-size: 2.2rem;
  color: #757575;
  line-height: 1.3;
}

p.subscript,
p.date {
  margin-top: -1.6rem;
  color: #757575;
}

p.small {
  font-size: 18px !important;
  font-size: 1.8rem !important;
  margin-bottom: 2.4rem !important;
  line-height: 1.5 !important;
}

p.light {
  color: #757575 !important;
}

p.margin-small {
  margin-bottom: 1.6rem;
}

a {
  text-decoration: underline;
  cursor: pointer;
  color: #333333;
}

a:hover,
a:active {
  color: #757575;
}

a.link-top {
  text-decoration: none;
  margin-bottom: 4rem;
  display: inline-block;
}

::selection {
  background: #333333;
  color: #FFF;
}

::-moz-selection {
  background: #333333;
  color: #FFF;
}

::-webkit-selection {
  background: #333333;
  color: #FFF;
}

ul.ul,
ol.ol {
  padding-left: 1.6rem;
  margin-bottom: 3.2rem;
  line-height: 1.5;
  font-size: 18px;
}

ul.ul li,
ol.ol li {
  margin-bottom: 0.8rem;
  font-size: 18px;
}

ul.ul.disc-none,
ol.ol.disc-none {
  list-style-type: none;
  padding-left: 0px !important;
}

.text-light {
  color: #757575;
}

.line {
  width: 100%;
  height: 1px;
  background: #dddddd;
  border-bottom: #ffffff solid 1px;
  clear: both;
  margin-bottom: 4.8rem;
}

/* Font Style */
@font-face {
  font-family: 'proxima nova bold';
  src: url('../../themes/dannaway/fonts/proximanova-bold-webfont.eot');
  src: url('../../themes/dannaway/fonts/proximanova-bold-webfontd41d.eot?#iefix') format('embedded-opentype'), url('../../themes/dannaway/fonts/proximanova-bold-webfont.woff') format('woff'), url('../../themes/dannaway/fonts/proximanova-bold-webfont.ttf') format('truetype'), url('../../themes/dannaway/fonts/proximanova-bold-webfont.svg#proxima_nova_rgbold') format('svg');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'proxima nova semibold';
  src: url('../../themes/dannaway/fonts/proximanova-semibold-webfont.woff2') format('woff2'), url('../../themes/dannaway/fonts/proximanova-semibold-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'proxima nova light';
  src: url('../../themes/dannaway/fonts/proximanova-light-webfont.eot');
  src: url('../../themes/dannaway/fonts/proximanova-light-webfontd41d.eot?#iefix') format('embedded-opentype'), url('../../themes/dannaway/fonts/proximanova-light-webfont.woff') format('woff'), url('../../themes/dannaway/fonts/proximanova-light-webfont.ttf') format('truetype'), url('../../themes/dannaway/fonts/proximanova-light-webfont.svg#proxima_nova_ltregular') format('svg');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* Sections */
section.light,
section.main {
  overflow: hidden;
  /* border-top: #ffffff solid 1px; */
  padding: 6.4rem 3.2rem;
}

.about section.light:last-child,
.about section.main:last-child,
.featured section.light:last-child,
.featured section.main:last-child {
  padding-bottom: 12.8rem;
}

section.dark,
section.noise {
  background: #fafafa;
  border-bottom: #dddddd solid 1px;
  padding: 6.4rem 3.2rem;
}

.about section.dark:last-child,
.about section.noise:last-child,
.featured section.dark:last-child,
.featured section.noise:last-child {
  padding-bottom: 12.8rem;
}

section.dark:last-child,
section.noise:last-child {
  border-bottom: none;
}

section.dark {
  -webkit-box-shadow: inset 0px 1px 4px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: inset 0px 1px 4px 0px rgba(0, 0, 0, 0.1);
  box-shadow: inset 0px 1px 4px 0px rgba(0, 0, 0, 0.1);
}

section.noise {
  border: none;
}

section.main {
  background: none;
  border: none;
  border-bottom: #dddddd solid 1px;
}

section.light {
  border-bottom: #dddddd solid 1px;
}

.text-main {
  position: relative;
}

/* Image */
img {
  max-width: 100%;
  position: relative;
  height: auto;
}

#Contact-image {
  max-width: 65%;
  position: relative;
  height: auto;
}

/* #Contact-me-image {
  max-width: 50%;
  position: relative;
  height: auto;
} */

#Skills-image {
  max-width: 80%;
  position: relative;
  height: auto;
}

#portfolio-image {
  max-width: 90%;
  position: relative;
  height: auto;
}

/* Header-Center */
.header-center {
  height: 1px;
  background: #dddddd;
  border-bottom: #ffffff solid 1px;
  margin-bottom: 3.2rem;
  position: relative;
}

.header-center h3 {
  background: #fafafa;
  position: absolute;
  top: -0.8rem;
  left: 50%;
  margin-left: -160px;
  width: 320px;
  text-align: center;
  display: block;
  color: #757575;
  text-transform: uppercase;
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: normal;
  letter-spacing: 0.2rem;
  padding: 0 !important;
  font-family: "proxima nova semibold", "Helvetica Neue", Helvetica, Arial, Sans-serif;
}

/* Image Face */
.face {
  width: 100%;
  position: relative;
}

.project-img {
  margin-top: 100px;
}

.user-men {
  width: 40%;
  height: 1%;
}

.face .face-img {
  display: block;
  margin: 0px;
}

.face a {
  color: #757575;
  text-decoration: none;
}

.face .coder,
.face .designer {
  position: absolute;
  width: 40%;
  display: block;
  z-index: 10;
  height: 20%;
  margin: auto;
  top: 0;
  bottom: 0;
}

.face .coder h1,
.face .designer h1 {
  display: none;
}

.face .designer {
  left: 0;
}

.face .coder {
  right: 0;
  text-align: right;
}

.face .designer-img,
.face .coder-img,
.face .designer-bg,
.face .coder-bg,
.face .coder p,
.face .designer p {
  display: none;
}

/* Portfolio Thumbs */
.thumbs {
  list-style: none;
  position: relative;
  padding: 0;
  /* Inline media queries */
}

.thumbs li {
  float: none;
  margin: 0 0 3.2rem 0;
  background: #ffffff;
  padding: 5% 5% 0 5%;
  position: relative;
  display: block;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  border-radius: 12px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  -webkit-box-shadow: 0 1px 4px 0px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 1px 4px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 0 1px 4px 0px rgba(0, 0, 0, 0.2);
  /* Show the 3rd item at the bottom of the page */
}

.thumbs li a {
  text-decoration: none;
  display: block;
  position: relative;
  color: #333333;
}

.thumbs li a img {
  display: block;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  margin: 0;
}

.thumbs li:hover {
  -webkit-box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.2);
}

.home .thumbs li:nth-child(3n),
.portfolio .thumbs li:nth-child(3n),
.error404 .thumbs li:nth-child(3n) {
  display: block;
}

.thumbs .description {
  padding: 1.6rem 0;
  position: relative;
  overflow: hidden;
}

.thumbs h4,
.thumbs .h4 {
  font-weight: normal;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.2;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-bottom: 0.4rem;
  font-family: "proxima nova light", "Helvetica Neue", Helvetica, Arial, Sans-serif;
}

.thumbs p {
  display: block;
  margin: 0 !important;
  font-size: 16px;
  font-size: 1.6rem;
  color: #757575;
  line-height: 1.2 !important;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.thumbs .arrow-r {
  display: none;
}

.js .thumbs .arrow-r {
  opacity: 0;
  right: 10;
}

/* Mobile Mode */
.info-container {
  display: none;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  width: 100%;
  margin-top: 30px;
  transition: all 0.3s ease-in-out;
}

p {
  font-size: 1.5rem;
  text-align: justify;
  margin: 20px 0 0 0;
}

h2 {
  font-size: 2.5rem;
  font-weight: 600;
}

.highlight {
  color: black;
  font-weight: bold;
  font-family: monospace;
}

.animation-text {
  font-size: 2.5rem;
  font-weight: bold;
  color: yellow;
  margin-top: 10px;
}

.animation-text1 {
  font-size: 2.5rem;
  display: none;
  font-weight: bold;
  color: yellow;
  margin-top: 10px;
}

.animation-text2 {
  font-size: 2rem;
  font-weight: bold;
  color: yellow;
  margin-top: 5px;
}

/* Social Media Icons */
.icons {
  display: flex;
  justify-content: start;
  align-items: center;
  margin: 20px 0 20px 0;
}

.social-icons {
  display: none;
  flex-direction: row;
  gap: 1.25rem;
  list-style: none;
  padding: 0;
}

.social-icons .icon {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 2.8rem;
  width: 2.8rem;
  font-size: 2.25rem;
  transition: transform 0.3s ease;
  color: black;
  text-decoration: none;
}

.social-icons .icon:hover {
  transform: scale(1.25);
  color: #FBBF24;
}

/* Mobile Mode NavBar */
.social-container {
  position: fixed;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  padding: 10px;
  border-radius: 15px;
  backdrop-filter: blur(10px);
  border: 1px solid #e5e7eb;
  ;
  z-index: 999;
}

.social-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e5e7eb;
  border-radius: 50%;
  cursor: pointer;
}

.social-icon svg {
  width: 20px;
  height: 20px;
  fill: white;
  color: #000;
}

.dark-mode-toggle {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

/* Email & WhatsApp Button Animation */
.contact-button {
  position: fixed;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: skyblue;
  border-radius: 50%;
  cursor: pointer;
  animation: bounce 1.5s infinite;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  z-index: 999;
}

.email-button {
  bottom: 20px;
  right: 5px;
}

.gmail-color {
  background: linear-gradient(45deg,
      #ea4335 25%,
      /* Red */
      #4285f4 25%,
      /* Blue */
      #4285f4 50%,
      /* Blue */
      #34a853 50%,
      /* Green */
      #34a853 75%,
      /* Green */
      #fbbc05 75%
      /* Yellow */
    );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.whatsapp-button {
  bottom: 80px;
  right: 5px;
}

.icon {
  font-size: 26px;
  color: white;
}

@keyframes bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

/* Footer NavBar */
.nav-footer {
  margin-right: 0;
  margin-top: 0;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  flex-direction: column;
  text-align: center;
}

.box {
  display: flex;
  font-size: 18px;
  font-weight: bold;
  transition: transform 0.2s ease, background 0.2s ease;
}

.box i {
  font-size: 24px;
}

.box p {
  margin: 5px 0 0 10px;
  gap: 20px;
}

.box:hover {
  transform: scale(1.1);
  color: black;
}

.icon .fa-instagram,
.instagram-icon {
  background: linear-gradient(45deg, #5b51d8, #c13584, #f77737, #ffdc80, #833ab4, #e1306c, #fd1d1d, #405de6, #fcaf45);
  -webkit-background-clip: text;
  color: transparent;
  display: inline-block;
}

/* ==============================  HOME PAGE END  ==============================  */



/* ==============================  ABOUT PAGE START  ==============================  */

/* Text Shadow */
.bar-chart .percent,
.bar-chart .skill {
  text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.5);
}

.bar-chart .label,
.concept {
  text-shadow: 0px 1px 1px #ffffff;
}

.about section.light:last-child,
.about section.main:last-child,
.featured section.light:last-child,
.featured section.main:last-child {
  padding-bottom: 12.8rem;
}

/* Snaps */
.snaps {
  border-top: #dddddd 1px solid;
  padding-top: 4.8rem;
  margin: auto;
}

.snaps a {
  width: 44%;
  margin: 2% 4% 2% 0;
  float: left;
  text-decoration: none;
  padding: 2%;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  border-radius: 12px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  -webkit-box-shadow: 0 1px 4px 0px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 1px 4px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 0 1px 4px 0px rgba(0, 0, 0, 0.2);
}

.snaps a img {
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  width: 100%;
  margin-bottom: 0;
}

.snaps a:nth-child(2n),
.snaps a:last-child {
  margin-right: 0;
}

.snaps a:hover {
  -webkit-box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.2);
}

/* Pie Chart */
.pie-chart,
.ten-things {
  text-align: center;
}

.pie-chart ul,
.ten-things ul {
  list-style-type: none;
  padding: 0;
}

.pie-chart .designer,
.ten-things .designer,
.pie-chart .coder,
.ten-things .coder {
  float: none;
  margin-bottom: 4rem;
}

h2 {
  margin-bottom: 20px;
}

/* Bar Chart */
#bar-chart {
  display: none;
}

/* BUTTONS  */
.buttons {
  gap: 1.25rem;
  margin-top: 20px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
  display: flex;
}

.resume-btn {
  display: flex;
  background-color: black;
  color: white;
  font-size: 1rem;
  padding: 10px 20px;
  border-radius: 0.5rem;
  font-weight: bold;
  text-decoration: none;
  align-items: center;
  transition: color 0.3s ease;
}

.resume-btn:hover {
  color: #FBBF24;
}

.resume-btn-content {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 12px;
}

.download-btn {
  display: flex;
  align-items: center;
  background-color: black;
  color: white;
  font-size: 1rem;
  padding: 10px 20px;
  border-radius: 0.5rem;
  font-weight: bold;
  text-decoration: none;
  transition: color 0.3s ease, background-color 0.3s ease;
}

.download-btn:hover {
  color: #FBBF24;
}

.download-btn-content {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.coder li a,
.designer li a {
  text-decoration: none;
}

.html,
.html-img {
  color: #E34F26;
  display: flex;
  width: 25px;
  height: 25px;
  gap: 10px;
}

.css,
.css-img {
  color: #3498db;
  display: flex;
  width: 25px;
  height: 25px;
  gap: 10px;
}

.script,
.script-img {
  color: #F7DF1E;
  display: flex;
  width: 25px;
  height: 25px;
  gap: 10px;
}

.React-js,
.React-img {
  color: #61DAFB;
  display: flex;
  width: 25px;
  height: 25px;
  gap: 10px;
}

.tailwindcss,
.Tailwind-img {
  color: #38B2AC;
  display: flex;
  width: 25px;
  height: 25px;
  gap: 10px;
}

.php,
.php-img {
  color: #4F5B93;
  display: flex;
  width: 25px;
  height: 25px;
  gap: 10px;
}

.Mysql,
.Mysql-img {
  color: #00758F;
  display: flex;
  width: 25px;
  height: 25px;
  gap: 10px;
}

.Canva,
.Canva-img {
  color: #00C4CC;
  display: flex;
  width: 25px;
  height: 25px;
  gap: 10px;
}

.Bootstrap,
.Bootstrap-img {
  color: #7952B3;
  display: flex;
  width: 25px;
  height: 25px;
  gap: 10px;
}

.Visual,
.Visual-img {
  color: #007ACC;
  display: flex;
  width: 25px;
  height: 25px;
  gap: 10px;
}

.Git,
.Git-img {
  color: #F05032;
  display: flex;
  width: 25px;
  height: 25px;
  gap: 10px;
}

.ChatGPT,
.ChatGPT-img {
  color: #10A37F;
  display: flex;
  width: 25px;
  height: 25px;
  gap: 10px;
}

.Google,
.Google-img {
  display: flex;
  width: 25px;
  height: 25px;
  gap: 10px;
}

/* ==============================  ABOUT PAGE END  ==============================  */



/* ==============================  SKILLS PAGE START  ==============================  */
.circle {
  border: 2px solid transparent;
  width: 0;
  height: 0;
  left: 50%;
  margin: 100px 0 0 0;
  position: relative;
  transform-style: preserve-3d;
  animation: animateCircle 40s linear infinite;
}

.circle span {
  position: absolute;
  top: 0;
  left: 0;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transform-origin: center;
  transform-style: preserve-3d;
  transform: rotateY(calc(var(--i) * calc(360deg / 16))) translateZ(250px);
}

.circle span img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.5s;
}

.circle span img:hover {
  transform: scale(1.2);
}

@keyframes animateCircle {
  0% {
    transform: perspective(1000px) rotateY(0) rotateX(15deg);
  }

  100% {
    transform: perspective(1000px) rotateY(360deg) rotateX(15deg);
  }
}

.tech-stack {
  display: grid;
  grid-template-columns: repeat(4, minmax(100px, 1fr));
  gap: 20px;
}

.tech-item {
  text-align: center;
  padding: 20px;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.tech-item:hover {
  transform: translateY(-10px);
}

.tech-item i {
  font-size: 40px;
  color: #007bff;
}

/* ==============================  SKILLS PAGE END  ==============================  */



/* ==============================  PORTFOLIO PAGE START  ==============================  */

.portfolio .content-detail .row.alt [class^="col-"] {
  float: right;
  margin: 0 0 0 3.84615385%;
}

.portfolio .content-detail [class^="col-"] {
  float: left;
  margin: 0 3.84615385% 0 0;
  list-style: none;
  position: relative;
}

.portfolio .content-detail [class^="col-"]:last-child,
.portfolio .content-detail .row.alt [class^="col-"]:last-child {
  margin-right: 0;
}

.portfolio .content-detail .col-3 {
  width: 48.0769230769%;
}

.portfolio .content-detail .col-3:nth-child(2) {
  margin-right: 0;
}

.portfolio .content-detail .col-4 {
  width: 100%;
  margin-right: 0;
}

.portfolio .content-detail .col-6 {
  width: 100%;
  margin-right: 0;
}

.portfolio .content-detail .col-12 {
  width: 100%;
  margin-right: 0;
}

.portfolio h1,
.portfolio .h1 {
  font-size: 40px;
  font-size: 4rem;
  font-family: "proxima nova light", "Helvetica Neue", Helvetica, Arial, Sans-serif;
  border-bottom: #dddddd solid 1px;
  letter-spacing: -0.1rem;
  padding-bottom: 0.8rem;
  font-weight: normal;
}

.portfolio h2,
.portfolio .h2,
.portfolio h3,
.portfolio .h3,
.portfolio .heading {
  padding-top: 1.6rem;
}

.portfolio .author {
  color: #757575;
  font-size: 18px;
  font-size: 1.8rem;
}

.portfolio .author .date {
  float: right;
}

.portfolio .text-center {
  margin: auto;
  margin-bottom: 6.4rem;
  max-width: 68rem;
}

.portfolio .text-center.nomargin {
  margin: 0 auto 0 auto !important;
}

.portfolio .text-center p:last-child {
  margin-bottom: 0;
}

.portfolio .content-detail {
  position: relative;
}

.portfolio .content-detail p:not(.thumbs *) {
  line-height: 1.7;
  margin-bottom: 4rem;
  font-size: 1.5rem;
}

.portfolio .content-detail ul:not(.thumbs),
.portfolio .content-detail .ul,
.portfolio .content-detail ol,
.portfolio .content-detail .ol {
  font-size: 20px;
  font-size: 1.5rem;
  line-height: 1.5;
  margin-bottom: 4rem;
}

.portfolio .content-detail ul:not(.thumbs) li,
.portfolio .content-detail .ul li,
.portfolio .content-detail ol li,
.portfolio .content-detail .ol li {
  margin-bottom: 1rem;
}

/* Previous and Next buttons */
.next,
.prev {
  display: none;
}

.filter-section {
  margin-bottom: 30px;
}

.filter-buttons {
  display: flex;
  justify-content: center;
  font-size: 1.5rem;
  gap: 10px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 8px 16px;
  background-color: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: 4px;
  cursor: pointer;
  font-weight: 500;
}

.filter-btn:hover {
  background-color: var(--primary-color);
  color: var(--white);
}

.filter-btn.active {
  background-color: var(--primary-color);
  color: var(--white);
}

:root {
  --primary-color: #f7941d;
  --secondary-color: #333;
  --light-gray: #ebebeb;
  --white: #ffffff;
  --black: #000000;
  --hover-darken: rgba(0, 0, 0, 0.1);
}

/* ==============================  PORTFOLIO PAGE END  ==============================  */



/* ==============================  CONTACT PAGE START  ==============================  */
.contact-social {
  display: grid;
  grid-template-columns: repeat(2, minmax(100px, 1fr));
  gap: 5rem;
  list-style: none;
  padding: 0;
  margin: 50px 0 0 0;
}

.contact-social .box {
  text-decoration: none;
}

.contact-social .box i {
  font-size: 50px;
}

.contact-social .box p {
  margin: 15px 0 0 10px;
  gap: 20px;
}

.commend {
  position: relative;
  width: 850px;
  height: 550px;
  max-width: 100%;
  background-color: #fff;
  border-radius: 30px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  z-index: 1;
}

.form-box {
  position: absolute;
  right: 0;
  width: 50%;
  height: 100%;
  background: #fff;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  text-align: center;
  color: black;
  padding: 40px;
  z-index: 1;
  transition: 0.6s ease-in-out 1.2s, visibility 0s 1s;
}

.commend.active .form-box {
  right: 50%;
}

.form-box.register {
  visibility: hidden;
}

.commend.active .form-box.register {
  visibility: visible;
}

form {
  width: 100%;
}

.commend h1 {
  font-size: 30px;
}

.input-box {
  position: relative;
  margin: 20px -10px 0 -10px;
}

.input-box input {
  width: 100%;
  padding: 13px 50px 13px 20px;
  background: #eee;
  border-radius: 8px;
  border: none;
  box-sizing: border-box;
  outline: none;
  color: black;
  font-size: 18px;
  font-weight: 500;
  text-align: justify;
}

.input-box input::placeholder {
  color: #888;
  font-weight: 400;
}

.input-box i {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  color: #888;
}

.forgot-link {
  margin: 15px 0;
}

.forgot-link a {
  font-size: 14.5px;
  color: #333;
  text-decoration: none;
}

.ptn {
  width: 50%;
  height: 48px;
  background: #7494ec;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border: none;
  cursor: pointer;
  font-size: 16px;
  color: #fff;
  font-weight: 600;
  margin: 10px 0 0 0;
}

.commend p {
  margin: 15px 0;
  font-size: 14.5px;
  text-align: center;
}

.toggle-box {
  position: absolute;
  width: 100%;
  height: 100%;
}

.toggle-box::before {
  content: '';
  position: absolute;
  left: -250%;
  width: 300%;
  height: 100%;
  background: #7494ec;
  border-radius: 150px;
  z-index: 2;
  transition: 1.8s ease-in-out;
}

.commend.active .toggle-box::before {
  left: 50%;
}

.toggle-panel {
  position: absolute;
  width: 50%;
  height: 100%;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: 0.6s ease-in-out;
}

.toggle-panel.toggle-left {
  left: 0;
  transition-delay: 1.2s;
}

.commend.active .toggle-panel.toggle-left {
  left: -50%;
  transition-delay: 0.6s;
}

.toggle-panel.toggle-right {
  right: -50%;
  transition-delay: 0.6s;
}

.commend.active .toggle-panel.toggle-right {
  right: 0;
  transition-delay: 1.2s;
}

.toggle-panel p {
  margin-bottom: 20px;
}

.toggle-panel .ptn {
  width: 160px;
  height: 46px;
  background: transparent;
  border: 2px solid #fff;
  box-shadow: none;
  text-align: center;
}

textarea {
  width: 100%;
  height: 140px;
  padding: 13px 50px 13px 20px;
  border: 1px solid #ccc;
  box-sizing: border-box;
  margin-top: 6px;
  background: #eee;
  border-radius: 8px;
  border: none;
  outline: none;
  color: black;
  font-size: 18px;
  font-weight: 500;
  overflow-wrap: break-word;
  resize: none;
  text-align: justify;
}

.status-msg {
  color: #0d6efd;
  font-size: 18px;
  display: none;
  text-align: center;
  margin-top: 20px;
}

.success-msg {
  color: green;
  font-size: 18px;
  display: none;
  text-align: center;
  margin-top: 20px;
}

.error-message {
  color: red;
  font-size: 14.5px;
  display: none;
  text-align: center;
  margin: 5px 0 0 0;
  animation: buttons 3s linear;
}

#error-message-top {
  color: red;
  font-size: 16px;
  display: none;
}

.success-message {
  color: green;
  font-size: 16px;
  display: none;
  transition: .3s;
  margin-bottom: 10px;
  animation: buttons 3s linear;
}

.designe {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  margin-bottom: 20px;
}

.designe .Men {
  max-width: 50%;
}

.info {
  max-width: 1200px;
  margin: 0 auto;
}

.contact-info {
  display: grid;
  list-style: none;
  padding: 0;
  margin-top: 0;
  gap: 2rem;
}

.contact-info .contact-link {
  display: flex;
  align-items: center;
  /* Aligns items in a row */
  text-decoration: none;
  color: #333;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-info .contact-link i {
  font-size: 24px;
  color: #149ddd;
  background-color: #dff3fc;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.contact-info .contact-link p {
  margin: 0 0 0 10px;
  font-size: 14px;
  color: #333;
  transition: color 0.3s ease;
}

/* Hover Effects */
.contact-info .contact-link:hover i {
  background-color: #149ddd;
  color: white;
}

.contact-info .contact-link:hover p {
  color: #149ddd;
}

#content-details {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.left-Contact-container {
  flex: 1;
  box-sizing: border-box;
}

.right-Contact-container {
  flex: 1;
  box-sizing: border-box;
}

.right-Contact-container img {
  width: 100%;
  height: auto;
  object-fit: cover;
}